home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / macf / mger.dir / 00075.ls < prev    next >
Encoding:
Text File  |  1995-10-10  |  425 b   |  23 lines

  1. on enterFrame
  2.   set the keyDownScript to "if the key = RETURN then RunOff"
  3.   if length(field "name") > 15 then
  4.     set gCurrentSprite to 3
  5.     RunOff()
  6.   end if
  7.   if length(field "movie") > 15 then
  8.     set gCurrentSprite to 4
  9.     RunOff()
  10.   end if
  11. end
  12.  
  13. on mouseDown
  14.   global gCurrentSprite
  15.   if rollOver(3) then
  16.     set gCurrentSprite to 3
  17.   else
  18.     if rollOver(4) then
  19.       set gCurrentSprite to 4
  20.     end if
  21.   end if
  22. end
  23.